home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue28
/
subclass
/
app1.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-09-04
|
193 b
|
14 lines
program app1;
uses
Forms,
app1main in 'app1main.pas' {MyForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMyForm, MyForm);
Application.Run;
end.